home *** CD-ROM | disk | FTP | other *** search
/ The Sunday Times - Parent Power 2007 / The Sunday Times - Parent Power 2007.iso / pc / engine / school2.swf / scripts / frame_1 / DoAction.as
Text File  |  2006-11-03  |  449b  |  26 lines

  1. function backToMenu()
  2. {
  3.    trace("menu");
  4.    _parent.nav.schools_of_year.onRelease();
  5. }
  6. function showPage(nmPageNum)
  7. {
  8.    var _loc2_ = nmPageNum;
  9.    var _loc1_ = undefined;
  10.    if(_loc2_ == "prev")
  11.    {
  12.       _loc1_ = _currentframe - 1;
  13.    }
  14.    else if(_loc2_ == "next")
  15.    {
  16.       _loc1_ = _currentframe + 1;
  17.    }
  18.    else
  19.    {
  20.       _loc1_ = _loc2_;
  21.    }
  22.    mcNav.gotoAndStop(_loc1_);
  23.    this.gotoAndStop(_loc1_);
  24. }
  25. stop();
  26.